home *** CD-ROM | disk | FTP | other *** search
/ Amiga Collections: Purity / Purity #42 (1995-01)(PackMAN)(DE)[WB].zip / Purity #42 (1995-01)(PackMAN)(DE)[WB].adf / Includes3v1 / Includes3v1.lha / Utils / DOSUtils.i < prev    next >
Text File  |  1994-12-04  |  378b  |  19 lines

  1. {
  2.         DOSUtils.i for PCQ Pascal
  3.  
  4.         A couple of routines to make using DOS a little easier.
  5.         The source code for these routines is under Runtime/Extras.
  6. }
  7.  
  8. {$I   "Include:DOS/DOS.i"}
  9.  
  10. Function APTRtoBPTR(a : Address) : BPTR;
  11.     External;
  12.  
  13. Function BPTRtoAPTR(b : BPTR) : Address;
  14.     External;
  15.  
  16. Function GetFileHandle(var f : Text) : FileHandle;
  17.     External;
  18.  
  19.